All Questions
Tagged with mvparchitectural-patterns
4 questions
0votes
2answers
168views
How to construct a model state dependent context menu in a MVP GUI application
Lets say I have a GUI application which tries to adhere to Model-View-Presenter (MVP) as best as possible. In this application I have a list box with items. One should be able to interact with these ...
2votes
0answers
69views
Do MV* architectural patterns apply not only to OO languages but also functional languages?
I am learning about MV* architectural patterns, thanks to the help from several answers here. I learned that they are used for designing the architectures of user interactive applications. I also ...
4votes
1answer
1kviews
In MVP, should the View have access to Domain objects?
Let's say I have a form for representing a user. When pressing the "Save" button, should a User object be: constructed by the View based on the input, then passed to the Model via the Presenter and ...
1vote
0answers
4kviews
Can MVP be implemented in Android with Activities and Fragments as Presenters and Custom Views?
Lately my team has started considering the implementation of MVP pattern in some of our applications. We followed the several guides and tutorials out there, basically ending up with regular ...